home *** CD-ROM | disk | FTP | other *** search
/ The Fast Show Comedy Pack / The Fast Show Comedy Pack.iso / FSQuiz / FSQuiz.dxr / Internal_4_questionClick.ls < prev    next >
Encoding:
Text File  |  1999-11-15  |  539 b   |  34 lines

  1. property meSprite, meMem
  2. global gNumPlayers, gTherm
  3.  
  4. on beginSprite me
  5.   meSprite = sprite(me.spriteNum)
  6.   if gNumPlayers = 2 then
  7.     mKillClickBehaviour(me)
  8.   end if
  9. end
  10.  
  11. on mKillClickBehaviour me
  12.   meSprite.scriptInstanceList = []
  13.   cursor(0)
  14. end
  15.  
  16. on mouseDown me
  17.   cursor(-1)
  18.   if objectp(gTherm) then
  19.     gTherm.mClick(me.spriteNum - 10)
  20.   end if
  21. end
  22.  
  23. on mouseEnter me
  24.   if the mouseDownScript <> "stopEvent" then
  25.     cursor(280)
  26.   end if
  27. end
  28.  
  29. on mouseLeave me
  30.   if the mouseDownScript <> "stopEvent" then
  31.     cursor(-1)
  32.   end if
  33. end
  34.